@charset "UTF-8";
/* CSS para Jardí Botànic */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    background-color: #f3e6d8;
    color: #5a3a2e;
}

.titulo-historia {
    font-family: 'Snell Roundhand', cursive !important;
    color: #754127 !important;
    font-size: 2.5rem !important;     
    text-align: center;
    margin: 0; 
}

.intro {
    margin: 20px auto; /* esto controla distancia desde arriba */
    padding: 20px;
}  

/* HERO */
.hero {
    position: relative;
	
}

.hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-logo {
    position: absolute;
    top: 35%; /* Ajusta según quieras */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e7b8a2;
    padding: 30px 60px;
    border-radius: 100px;
    text-align: center;
}

.hero-logo-oval {
  position: absolute;
  top: 50%; /* ya lo tienes */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 200px;
  background-color: #e7b8a2;
  border-radius: 50%;
  display: flex;
  align-items: center;   /* centrado vertical */
  justify-content: center; /* centrado horizontal */
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.hero-logo-oval img {
    max-width: 130%;
    max-height: 130%;
}

/* NAV */
nav {
    background-color: #b9945d; /* amarillo mostaza boho */
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li a {
    color: #f9ecde; /* color crema */
    text-decoration: none;
    padding: 18px 25px;
    display: block;
    font-weight: bold;
    font-size: 1.2rem; /* tamaño más grande */
    font-family: "Snell Roundhand", cursive, serif;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #a8804c; /* mostaza más oscuro al pasar mouse */
    color: #fffbe6;
}

/* MAIN */
main {
     padding: 20px 40px;
}

.bloque-imatges {
    background-color: #7b846f;
    padding: 80px 20px;
}

.contenedor-imatges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contenedor-imatges img {
    width: 320px;
    height: auto;
    border-radius: 8px;
}

/* FOOTER */
footer {
    background-color: #cfa37e;
    padding: 60px 20px;
    text-align: center;
	color: white;
}

/* Contenedor logos */
.footer-logos {
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 60px; /* espacio entre logos */
    margin-bottom: 40px;
}

/* Tamaño logos */
.footer-logos img {
    height: 70px; /* Ajusta si los quieres más grandes */
    width: auto;
}

/* Logo Ajuntament y Generalitat (más pequeños e iguales) */
.footer-logos img:nth-child(2),
.footer-logos img:nth-child(3) {
    height: 65px;
}

/* Logo Jardines simplificado (MUCHO más grande) */
.footer-logos img:first-child {
    height: 140px;
}

/* Contenedor cajas */
.footer-boxes {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
	flex-wrap: wrap; /* para que no se rompa en pantallas pequeñas */
}

/* Estilo cajas */
.footer-box {
    background-color: #b9945d;
    color: #f9ecde;
    padding: 20px 40px;
    font-family: "Snell Roundhand", cursive, serif;
    font-size: 1.3rem;
    border-radius: 6px;
}

/* Copyright */
.footer-copy {
    margin-top: 15px;
    font-size: 0.9rem;
}
	